home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / LDB171.ARJ / EXAMP201.CPP < prev    next >
Text File  |  1992-05-12  |  295b  |  16 lines

  1.      // examp201.cpp - link with binder.obj
  2.  
  3.      #include "binder.hpp"
  4.  
  5.      main()
  6.      {
  7.           Binder b(BDR_DDELETE,5);
  8.  
  9.           for (int i = 0; b.insQ(new int(i)); i++);
  10.  
  11.           while (++b)
  12.                cout << *(int *)b.get() << "\n";
  13.  
  14.           return 0;
  15.      }
  16.